home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1997 #1 / Amiga Plus CD - 1997 - No. 01.iso / pd / programmierung / mesa-1.2.8 / widgets / man / makefile.in < prev    next >
Makefile  |  1996-05-27  |  2KB  |  97 lines

  1. # Makefile.in --- Mesa GL Widget for X11 Toolkit Programming
  2. # Copyright (C) 1995 by
  3. #   Jeroen van der Zijp <jvz@cyberia.cfdrc.com>
  4. #   Thorsten Ohl <Thorsten.Ohl@Physik.TH-Darmstadt.de>
  5. #
  6. # This library is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU Library General Public
  8. # License as published by the Free Software Foundation; either
  9. # version 2 of the License, or (at your option) any later version.
  10. #
  11. # This library is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU Library General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Library General Public
  17. # License along with this library; if not, write to the Free Software
  18. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. #
  20. # $Id: Makefile.in,v 1.6 1995/04/22 14:13:02 ohl Exp $
  21. #
  22. ########################################################################
  23.  
  24. SHELL = /bin/sh
  25.  
  26. srcdir = @srcdir@
  27. top_srcdir = @top_srcdir@
  28. mesa_srcdir = @mesa_srcdir@
  29. VPATH = @srcdir@
  30.  
  31. prefix = @prefix@
  32. manprefix =
  33.  
  34. mandir = $(prefix)/man/man3
  35.  
  36. INSTALL_DATA = @INSTALL_DATA@
  37.  
  38. POD2MAN = @POD2MAN@
  39. POD2HTML = @POD2HTML@
  40.  
  41. ########################################################################
  42. # No user serviceable parts below!
  43. ########################################################################
  44.  
  45. PODS = MesaDrawingArea.pod MesaWorkstation.pod \
  46.        GLwDrawingArea.pod GLwCreateMDrawingArea.pod \
  47.        GLwDrawingAreaSwapBuffers.pod GLwDrawingAreaMakeCurrent.pod
  48.  
  49. MANS = $(PODS:.pod=.3x)
  50. HTMLS = $(PODS:.pod=.html)
  51.  
  52. all: $(MANS) $(HTMLS)
  53.  
  54. install: $(MANS)
  55.     $(INSTALL_DATA) $(MANS) $(mandir)
  56.  
  57. uninstall:
  58.     cd $(mandir) && rm -f $(MANS)
  59.  
  60. .SUFFIXES:
  61. .SUFFIXES: .html .3x .pod
  62.  
  63. .pod.html:
  64.     if test -n "$(POD2HTML)"; then \
  65.       $(POD2HTML) $^ > $@; \
  66.     else \
  67.       touch $@; \
  68.     fi
  69.  
  70. .pod.3x:
  71.     if test -n "$(POD2MAN)"; then \
  72.       $(POD2MAN) $^ > $@; \
  73.     else \
  74.       touch $@; \
  75.      fi
  76.  
  77. # Standard GNU clean* targets:
  78. maintainer-clean: clean
  79.     @echo "This command is intended for maintainers to use;"
  80.     @echo "it deletes files that may require special tools to rebuild."
  81.     rm -f *.3x *.html
  82.  
  83. mostlyclean: clean
  84.  
  85. distclean: clean
  86.     rm -f Makefile
  87.  
  88. clean:
  89.     rm -f .*~ *~
  90.  
  91. # Additional clean* targets:
  92. realclean: distclean
  93.  
  94. # GNU autoconf(1) targets:
  95. Makefile: Makefile.in $(top_srcdir)/config.status
  96.     cd $(top_srcdir); $(SHELL) config.status
  97.